github.com/klauspost/compress/flate.advancedState.maxInsertIndex (field)

10 uses

	github.com/klauspost/compress/flate (current package)
		deflate.go#L88: 	maxInsertIndex int
		deflate.go#L432: 	s.maxInsertIndex = d.windowEnd - (minMatchLength - 1)
		deflate.go#L462: 		if s.index < s.maxInsertIndex {
		deflate.go#L493: 				if prevIndex+prevLength < s.maxInsertIndex {
		deflate.go#L521: 										if s.index < s.maxInsertIndex {
		deflate.go#L562: 												if s.index < s.maxInsertIndex {
		deflate.go#L591: 			end := min(newIndex, s.maxInsertIndex)
		deflate.go#L593: 			startindex := min(s.index+1, s.maxInsertIndex)
		deflate.go#L655: 						if s.index < s.maxInsertIndex {
		deflate.go#L861: 		s.maxInsertIndex = 0